home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gwu / taskingp.h < prev    next >
Text File  |  1996-01-30  |  762b  |  30 lines

  1. /*
  2.  * Copyright (C) 1985-1992  New York University
  3.  * 
  4.  * This file is part of the Ada/Ed-C system.  See the Ada/Ed README file for
  5.  * warranty (none) and distribution info and also the GNU General Public
  6.  * License for more details.
  7.  
  8.  */
  9.  
  10. void initialize_tasking();
  11. void start_creation(int, int);
  12. void start_activation(int, int, int);
  13. int union_tasks_declared(int list1, int list2);
  14. void end_activation(int);
  15. void abort(int);
  16. void complete_task();
  17. void complete_block();
  18. void terminate_unactivated();
  19. void purge_rdv(int);
  20. void delay_stmt(long);
  21. void clock_interrupt(long);
  22. void selective_wait(int);
  23. void end_rendezvous();
  24. void entry_call(long, int);
  25. void raise_in_caller();
  26. int is_callable(int);
  27. int is_terminated(int);
  28. int count(int, int);
  29. void round_robin();
  30.